@charset "UTF-8";
/* CSS Document */

body {
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 12px;
	font-weight: 300;
	background-color: #F8F8F8;
	color: #999;
	margin-top: 40px;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

a {
	text-decoration: none;
	color: #999;
}

a:hover {
	color: grey;
	font-weight: 400;
}

#name {
	position: relative;
	margin-left: 60px;
	margin-top: 40px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 24px;
	font-weight: 200;
}

#navigation {
	padding-left: 0;
	position: absolute;
	z-index: 1;
	margin-top: 40px;
	margin-left: 60px;
	font-size: 18px;
	color: #999;
}

#content ul {
	padding: 0;
}

li {
	list-style-type: none;
}

#navigation li {
	cursor: pointer;
}

#navigation ul {
	padding-left: 20px;
}

#navigation a {
	display:inline-block;
    width:100%;
    height:100%;
}


#navigation a:hover {
	color: grey;
}


#navigation {
    flex: 0 0 200px;
    /* Adjust as necessary */
}

#content {
    position: relative;
	margin-top: 40px;
    margin-left: 360px;
	margin-right:360px;
    flex: 1;
    font-size: 14px;
    line-height: 1.2;
}

#content h1 {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 100;
    font-size: 18px;
    margin-bottom: 10px;
	color: black;
}

#content h2 {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 0;
    font-size: 16px;
    margin-bottom: 10px;
}


#content ul.exhibitions {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#content ul.exhibitions li {
    display: flex;
    margin-bottom: 3px;
}

#content .year {
    flex: 0 0 60px;
}

#content .details {
    flex: 1;
}

#button-home {
	position: absolute;
	display: inline;
	margin-left: 400px;
	margin-top: 60px;
	width: 70px;
	height: 70px;
	padding-right: 5px;
	paddin-bottom: 5px;
}

#button-vita {
	position: absolute;
	display: inline;
	margin-left: 475px;
	margin-top: 60px;
	padding-right: 5px;
	padding-bottom: 5px;
}

#button-arbeit {
	position: absolute;
	display: inline;
	margin-left: 550px;
	margin-top: 60px;
	padding-right: 5px;
	padding-bottom: 5px;
}

#button-zeichnungen {
	position: absolute;
	display: inline;
	margin-left: 400px;
	margin-top: 135px;
	padding-right: 5px;
	padding-bottom: 5px;
}

#button-fotos {
	position: absolute;
	display: inline;
	margin-left: 475px;
	margin-top: 135px;
	padding-right: 5px;
	padding-bottom: 5px;
}

#button-collagen {
	position: absolute;
	display: inline;
	margin-left: 550px;
	margin-top: 135px;
	padding-right: 5px;
	padding-bottom: 5px;
}


#abbildung {
	position: relative;
	margin-left: 360px;
	margin-top: 80px;
	background-color: none;
	max-width: calc(5 * 80px);
	/* 5 images * (70px width + 10px margin) */
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	/* Adjust the gap as needed */
}
#abbildung-buttons {
	position: relative;
	margin-left: 360px;
	margin-top: 80px;
	background-color: none;
	max-width: calc(5 * 210px);
	/* 5 images * (200px width + 10px margin) */
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	/* Adjust the gap as needed */
}

#abbildung img {
	margin: 0;
	display: inline-block;
}


#abbildung-breit {
	position: relative;
	margin-left: 340px;
	margin-top: 40px;
	background-color: none;
}

#abbildung-foto-1 {
	position: relative;
	margin-left: 300px;
	margin-top: 0px;
	background-color: none;
}

#abbildung-foto-2 {
	position: relative;
	margin-left: 240px;
	margin-top: 40px;
	background-color: none;
}

.betont {
	font-weight: 300;
	color: #474646;
}

#links {
	margin-left: 400px;
	margin-top: 40px;
	margin-right: 200px;
	background-color: none;
	font-size: 14px;
}

.links {
	font-size: 14px;
}

#scroll {
	width: 600px;
	height: 500px;
	margin-left: 400px;
	padding-right: 20px;
	overflow-y: auto;
	scroll-bar: hidden;

}

#footer {
    margin: auto 0 0px 60px;
    text-align: left;
	padding-top: 20px;
	padding-bottom: 20px;
}

#footer-right {

	float: right;
	margin-right: 60px;
	margin-bottom: 20px;
	font-size: 12px;
}

.popup {
	position: absolute;
	margin-left: 550px;
	margin-top: 60px;
	width: 70px;
	height: 35 px;
}


/* CSS for the Image Modal for the image gallery */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #FFF;
	/* Modal Background is white */
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #999;
	opacity: 0;
	/* Start with modal hidden */
	transition: opacity 0.01s ease;
	/* Smooth transition */
}

.modal-content {
	position: relative;
	padding: 80px;
	/* width: 80%; */
	max-width: 2000px;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	justify-content: center;
}

.mySlides img {
	max-width: 100%;
	max-height: 80vh;
	width: auto;
	height: auto;
	display: block;
	margin: auto;
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #999;
	font-size: 30px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: grey;
	text-decoration: none;
	cursor: pointer;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: #999;
	font-size: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	/* Smooth transition */
	z-index: 2;
}

.next {
	right: 20px;
	/* Offset from the edge to avoid overlap with wide images */
	border-radius: 3px 0 0 3px;
}

.prev {
	left: 20px;
	/* Offset from the edge to avoid overlap with wide images */
	border-radius: 0 3px 3px 0;
}

.next:hover,
.prev:hover {
	opacity: 1;
}

/* Hover zones */
.hover-zone {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 45%;
	/* Adjust width as needed */
	z-index: 1;
}

.prev-hover {
	left: -15%;
}

.next-hover {
	right: -15%;
}

/* Show arrows when hovering over hover zones */
.prev-hover:hover~.prev,
.next-hover:hover~.next {
	opacity: 1 !important;
}

.comment {
	color: #474646;
	padding: 10px;
	text-align: center;
	font-size: 14px;
}

.comment-name {
	color: #626161;
	padding: 10px;
	text-align: center;
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.modal-content {
		width: 90%;
		padding: 10px;
	}

	.mySlides img {
		max-width: 100%;
		max-height: 60vh;
	}

	.prev,
	.next {
		padding: 10px;
		font-size: 30px;
		opacity:1;
	}

	#navigation {
		margin-top: 30px;
		margin-left: 60px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: left;
        font-size: 20px;
        text-align: left;
    }

	#navigation li {
		padding: 10px;
		padding-left: 0px;
	}

    #abbildung {
        position: relative;
        margin: 20px 10px 20px 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        max-width: none;
    }

	#footer {
		font-size: 14px;
		margin-left: 15px;
    }

	.container {
		flex: 1;
    	display: flex;
    	flex-direction: column;
    }

    #content {
        margin-left: 20px;
		margin-right: 20px;
    }

    #content h1, #content h2 {
        font-size: 20px;
    }
}